home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / RCS / Db_Open.c,v < prev    next >
Text File  |  1989-06-16  |  5KB  |  225 lines

  1. head     1.6;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.6
  10. date     89.06.15.22.45.11;  author douglis;  state Exp;
  11. branches ;
  12. next     1.5;
  13.  
  14. 1.5
  15. date     89.01.13.11.44.27;  author douglis;  state Exp;
  16. branches ;
  17. next     1.4;
  18.  
  19. 1.4
  20. date     89.01.02.13.42.12;  author douglis;  state Exp;
  21. branches ;
  22. next     1.3;
  23.  
  24. 1.3
  25. date     88.09.22.22.11.59;  author douglis;  state Exp;
  26. branches ;
  27. next     1.2;
  28.  
  29. 1.2
  30. date     88.09.15.10.15.27;  author douglis;  state Exp;
  31. branches ;
  32. next     1.1;
  33.  
  34. 1.1
  35. date     88.08.14.15.08.28;  author douglis;  state Exp;
  36. branches ;
  37. next     ;
  38.  
  39.  
  40. desc
  41. @Procedure to open a 'database' file.
  42. @
  43.  
  44.  
  45. 1.6
  46. log
  47. @create database file if not already there
  48. @
  49. text
  50. @/* 
  51.  * Db_Open.c --
  52.  *
  53.  *    Source code for the Db_Open procedure.
  54.  *
  55.  * Copyright 1988 Regents of the University of California
  56.  * Permission to use, copy, modify, and distribute this
  57.  * software and its documentation for any purpose and without
  58.  * fee is hereby granted, provided that the above copyright
  59.  * notice appear in all copies.  The University of California
  60.  * makes no representations about the suitability of this
  61.  * software for any purpose.  It is provided "as is" without
  62.  * express or implied warranty.
  63.  */
  64.  
  65. #ifndef lint
  66. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Open.c,v 1.5 89/01/13 11:44:27 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  67. #endif not lint
  68.  
  69.  
  70. #include <db.h>
  71. #include <errno.h>
  72. #include "dbInt.h"
  73.  
  74.  
  75. /*
  76.  *----------------------------------------------------------------------
  77.  *
  78.  * Db_Open --
  79.  *
  80.  *    Open a system data file and return a handle to it.
  81.  *
  82.  * Results:
  83.  *    The handle is returned in *handlePtr.
  84.  *    On error, -1 is returned, otherwise 0 is returned.
  85.  *
  86.  * Side effects:
  87.  *    The file is opened and (optionally) locked.
  88.  *
  89.  *----------------------------------------------------------------------
  90.  */
  91.  
  92. int
  93. Db_Open(file, size, handlePtr, writing, lockWhen, lockHow, numBuf)
  94.     char *file;
  95.     int size;
  96.     Db_Handle *handlePtr;
  97.     int writing;         /* 1 if opening for writing */
  98.     Db_LockWhen lockWhen;
  99.     Db_LockHow lockHow;
  100.     int numBuf;            /* number of records to buffer */
  101. {
  102.     int streamID;
  103.     
  104.     streamID = open(file, (writing ? O_RDWR : O_RDONLY) | O_CREAT, FILE_MODE);
  105.     if (streamID == -1) {
  106.     syslog(LOG_ERR, "Db_Open: error opening file %s: %s.\n", file,
  107.            strerror(errno));
  108.     return(-1);
  109.     }
  110.  
  111.     /*
  112.      * Don't allow buffering for files locked a record at a time.
  113.      */
  114.     if (numBuf > 0 &&
  115.     (lockWhen == DB_LOCK_ACCESS || lockWhen == DB_LOCK_READ_MOD_WRITE)) {
  116.     errno = EINVAL;
  117.     return(-1);
  118.     }
  119.     
  120.     handlePtr->index = 0;
  121.     handlePtr->structSize = size;
  122.     handlePtr->lockType = writing ? LOCK_EX : LOCK_SH;
  123.     handlePtr->lockWhen = lockWhen;
  124.     handlePtr->lockHow = lockHow;
  125.     handlePtr->streamID = streamID;
  126.     handlePtr->firstRec = -1;
  127.     handlePtr->numBuf = numBuf;
  128.     if (numBuf > 0) {
  129.     handlePtr->buffer = malloc((unsigned) numBuf * size);
  130.     } else {
  131.     handlePtr->buffer = (char *) NULL;
  132.     }
  133. #ifndef CLEAN
  134.     handlePtr->fileName = malloc((unsigned) strlen(file) + 1);
  135.     (void) strcpy(handlePtr->fileName, file);
  136. #endif /* CLEAN */
  137.     
  138.  
  139.     if (lockWhen == DB_LOCK_OPEN) {
  140.     return(DbLockDesc(handlePtr));
  141.     }
  142.     return(0);
  143. }
  144. @
  145.  
  146.  
  147. 1.5
  148. log
  149. @changed for buffering and for new arg passing to lock routine.
  150. [generic checkin msg].
  151. @
  152. text
  153. @d17 1
  154. a17 1
  155. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Open.c,v 1.4 89/01/02 13:42:12 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  156. d22 1
  157. d55 1
  158. a55 1
  159.     streamID = open(file, writing ? O_RDWR : O_RDONLY, FILE_MODE);
  160. @
  161.  
  162.  
  163. 1.4
  164. log
  165. @open in RDWR mode rather than WRONLY mode if we're writing, 'cause
  166. we might also be reading.
  167. @
  168. text
  169. @d17 1
  170. a17 1
  171. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Open.c,v 1.3 88/09/22 22:11:59 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  172. d43 1
  173. a43 1
  174. Db_Open(file, size, handlePtr, writing, lockWhen, lockHow)
  175. d50 1
  176. d61 9
  177. d76 12
  178. d90 1
  179. a90 1
  180.     return(DbLockDesc(streamID, handlePtr->lockType, lockHow));
  181. @
  182.  
  183.  
  184. 1.3
  185. log
  186. @Changed some arg. orders, var. names, and Db_LockDesc to DbLockDesc.
  187. @
  188. text
  189. @d17 1
  190. a17 1
  191. static char rcsid[] = "$Header: Db_Open.c,v 1.2 88/09/15 10:15:27 douglis Exp $ SPRITE (Berkeley)";
  192. d53 1
  193. a53 1
  194.     streamID = open(file, writing ? O_WRONLY : O_RDONLY, FILE_MODE);
  195. @
  196.  
  197.  
  198. 1.2
  199. log
  200. @when printing syslog message about error opening file, print the strerror
  201. corresponding to it.
  202. @
  203. text
  204. @d17 1
  205. a17 1
  206. static char rcsid[] = "$Header: Db_Open.c,v 1.1 88/08/14 15:08:28 douglis Exp $ SPRITE (Berkeley)";
  207. d68 1
  208. a68 1
  209.     return(Db_LockDesc(streamID, handlePtr->lockType, lockHow));
  210. @
  211.  
  212.  
  213. 1.1
  214. log
  215. @Initial revision
  216. @
  217. text
  218. @d17 1
  219. a17 1
  220. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  221. d55 2
  222. a56 1
  223.     syslog(LOG_ERR, "Db_Open: error opening file %s.\n", file);
  224. @
  225.